home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutord.EXE / 56A.C < prev    next >
C/C++ Source or Header  |  1990-09-17  |  495b  |  27 lines

  1.  
  2. /* 
  3.     There may be additional include files required depending
  4.     upon the compile product you are using. Typical compilers
  5.     include Microsoft C by Microsoft or Turbo C by Boland Int'l.
  6. */
  7. #include <stdio.h>
  8. main()
  9. {
  10.     static    char    hello[] = "Hi there";
  11.  
  12.     printf("%s\n",hello);
  13.     printarray(hello);
  14.     printf("%s\n",hello);
  15. }
  16. printarray(string)
  17. char    *string;
  18. {
  19.     int    i;
  20.     for(i=0; *string != '\0'; i++){
  21.         printf("%c",*string);
  22.         *string = 'X' ;
  23.         string++;
  24.     }
  25.     printf("\n");
  26. }
  27.